home *** CD-ROM | disk | FTP | other *** search
/ Everything For A Hacker / 19990506-[HACK].iso / HEXEDIT / CROSSASM / PS48A12.ARJ / A48.DOC < prev    next >
Text File  |  1987-03-15  |  37KB  |  1,101 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.                              PseudoSam 48 Assembler Manual V1.1.00
  12.                              Copyright(c) 1986 PseudoCode
  13.  
  14.  
  15.  
  16.  
  17.  
  18. Disclaimer:
  19.  
  20.             PseudoSam 48 is distributed as is, with no guarantee that it
  21.             will work correctly in all situations.  In no event will the
  22.             Author be liable for any damages, including lost profits,
  23.             lost savings or other incidental or consequential damages
  24.             arising out of the use of or inability to use these
  25.             programs, even if the Author has been advised of the
  26.             possibility of such damages, or for any claim by any other
  27.             party.
  28.  
  29.             It is the users reponsibility to back up all important files!
  30.  
  31.             See copyright information in appendix B
  32.  
  33.  
  34.  
  35.  
  36.  
  37.                          Table of Contents
  38.  
  39. Chapter 1  PseudoSam 48 assembler vs. the Intel assembler.
  40.  
  41. Chapter 2  Running the assembler program.
  42.  
  43. Chapter 3  Assembler statement syntax
  44.  
  45. Chapter 4  Data types
  46.  
  47. Chapter 5  Expressions
  48.  
  49. Chapter 6  Assembler Directives
  50.   (also known as assembler Pseudo-opcodes)
  51.  
  52. Appendix A      ASCII character set
  53.  
  54. Appendix B      Copyright and registration information
  55.  
  56. Appendix C      Description of Files
  57.  
  58. Appendix D      Bug Reporting Procedure(Registered users ONLY!).
  59.  
  60. Appendix E      Compatibility
  61.  
  62. Appendix F      Revisions
  63.  
  64.  
  65.  
  66. Chapter 1 PseudoSam 48 assembler vs. the Intel assembler
  67.  
  68.      All PseudoSam(Pseudo brand Symbolic AsseMbler) assemblers conform to
  69.      a common syntax based on the UNIX system V assembler syntax. By
  70.      conforming to this Pseudo standard, conflicts with the manufacturers
  71.      syntax are created.  Below is a brief and incomplete list of those
  72.      conflicts.
  73.  
  74.       Intel format                     PseudoSam format
  75.  
  76. <identifier> equ <expression>         .equ <identifier> , <expression>
  77.  
  78. <identifier> set <expression>         .set <identifier> , <expression>
  79.  
  80. Has Macro capability                  No Macro capability at this time
  81.  
  82.  
  83.  
  84. * The difference in name between the Intel and the PseudoSam name
  85.   of assembler directives can be circumvented by the .opdef directive.
  86.  
  87.   example
  88.  
  89.    .opdef  eject,.eject      ;defines eject to be synonymous with .eject
  90.  
  91. *  A file syn.asm is distributed with the assembler with some useful
  92.    redefinitions.
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103. Unix system V is a trademark of AT & T.
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111. Chapter 2  Running the assembler program
  112.  
  113. 1.  Command line switch setting and source file specification.
  114.  
  115.      Assuming the user has an assembly language source file called foo.asm
  116.      type the following command:
  117.  
  118. a48 foo
  119.  
  120.      The assembler will assemble the program foo.asm using the default
  121.      assembler switch settings. the following files will be generated
  122.      by the assembler:
  123.  
  124.      foo.lst   ;assembled listing shown the code conversion and
  125.                ; any errors that where discover by the assembler.
  126.  
  127.      foo.obj   ;assembled object code in Intel Hex format.
  128.  
  129. **  for a list of switch setting see the .command assembler directive
  130.     description in chapter 6.
  131.  
  132. *** The assembler uses the following temporary file names.
  133.  
  134.     z0z0z0z0.tmp
  135.     z1z1z1z1.tmp
  136.  
  137.     ANY files with these names will be DESTROYED by the
  138.     by the assembler.
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146. Chapter 3  Assembler statement syntax
  147.  
  148. 1. Assembler Statements
  149.  
  150.      Assembler statements contain from zero to 4 fields as shown in
  151.      following.
  152.  
  153. <label> <opcode> <expressions> <comment>
  154.  
  155.      All fields are optional, but they must be in this order.
  156.  
  157. A.   Labels (<label>) are symbolic names that are assigned the starting
  158.      address of any code generated by the opcode and or expressions
  159.      of this line.(see section 2).
  160.  
  161. B.   Operation codes(<opcode>) tell the assembler what machine instruction
  162.      to generate, or what assembler control function to perform.
  163.      The operation code also tells the assembler what expressions are
  164.      required to complete the machine instruction or assembler directive.
  165.      (see chapter 6).
  166.  
  167. C.   Expression requirements are set by the opcode(see the microprocessor
  168.      reference manual or the assembler directives chapter for individual
  169.      opcode requirements).(see chapter 5).
  170.  
  171. D.   Comments are notes written by the programmer to explain what the
  172.      program is trying to accomplish. Comments generate no code.
  173.      (see section 3).
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181. 2.  Labels
  182.  
  183.      Labels can be unlimited in length, but only the first eight characters
  184.      are used to distinguish between them.  They must conform to the
  185.      following syntax.
  186.  
  187.      <label>  -> <identifier>':'
  188.  
  189.      <identifier> -> <alphabetic character> <identifier character string>
  190.  
  191.      <alphabetic character> -> character in the set ['A'..'Z', 'a'..'z', '.']
  192.  
  193.      <identifier character string> -> any sequence of characters from the
  194.                                       set ['A'..'Z','a'..'z', '.', '0'..'9']
  195.  
  196. example
  197. abc:                  ;label referred to as abc
  198. a c:                  ;not a valid label
  199.          foo:         ;label referred to as foo
  200. .123:                 ;label referred to as .123
  201.  
  202. * Case makes NO difference!
  203.  
  204. d:      ;is the same as
  205. D:
  206.  
  207.  
  208. 3.  Comments
  209.      Comments must start with a semi-colon ; and are terminated
  210.      by an end of line or file( <lf>(^J) or <sub>(^Z) ). An end
  211.      of line is inserted by typing the enter or return key by
  212.      most text editors.
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220. Chapter 4     Data types
  221.  
  222. 1.  Integers
  223.  
  224.     Integer constants can be specified in any of the following forms:
  225.  
  226. A.  Binary
  227.  
  228.     b'bb             ;bb=string of binary digits
  229.     B'bb
  230.  
  231. B.  Decimal
  232.  
  233.     ndd
  234.     d'dd             ;n=nozero decimal digit
  235.     D'dd             ;dd=string of decimal digits
  236.  
  237. C.  Octal
  238.  
  239.     0qq              ;qq=string of octal digits
  240.     o'qq
  241.     O'qq
  242.     q'qq
  243.     Q'qq
  244.  
  245. D.  Hexidecimal
  246.  
  247.     0x'hh            ;hh=string of hexidecimal digits
  248.     0X'hh
  249.     h'hh
  250.     H'hh
  251.     x'hh
  252.     X'hh
  253.  
  254.  
  255. Examples:
  256.  
  257.     077        ;octal number 77 = decimal 63
  258.     b'0101     ;binary number 101 = decimal 5
  259.     77         ;decimal number 77 = octal 115
  260.     h'ff       ;hexidecimal ff = decimal 255
  261.  
  262.  
  263.  
  264.  
  265.  
  266.  
  267. 2.  Strings:
  268.  
  269.     Strings consist of a beginning quote " followed by any reasonable number
  270.     of characters followed by an ending quote ". Control characters and double
  271.     quotes " and backslash \ may not be used in strings directly.  These
  272.     special characters are included by using a special escape sequence which
  273.     the assembler translates into the appropriate ASCII code.
  274.  
  275. Note: Strings may not be used in expressions!
  276.       Although character constants may(see below).
  277.  
  278. Escape sequences
  279.   "\"" string containing "
  280.   "\\" string containing \
  281.   "\'" string containing '
  282.   "\0" string containing null
  283.   "\n" string containing linefeed
  284.   "\r" string containing carriage return
  285.   "\f" string containing formfeed
  286.   "\t" string containing horizontal tab
  287.   "\nnn" string containing the ASCII character who's code is o'nnn
  288.          (nnn are octal digits).
  289.   * see appendix A for ASCII codes.
  290.  
  291. 3.  Character Constants:
  292.  
  293.     Character constants consist of  a single quote ' followed by
  294.     a character or an escape sequence(see above) followed by a
  295.     single quote '.
  296.  
  297. example:
  298.    'A' = ASCII character value for the letter A = 65 (decimal);
  299.    '\''= ASCII character value for the character ' = 39 (decimal).
  300.  
  301. Character constants are treated as integers by the assembler and
  302. are valid where ever an integer value is valid.
  303.  
  304. example:
  305.    'A' + 1 = 66
  306.  
  307.   * see appendix A for ASCII codes.
  308.  
  309. 4.  Symbolic values
  310.  
  311.     Symbolic values are generally labels, but may be any identifier
  312.     assigned an integer value(using .set or .equ pseudo-ops).
  313.  
  314.     As a special case the symbol * when used as an operand in an
  315.     expression denotes the value of the location counter (the value
  316.     the program counter will have during operation) at the beginning
  317.     of the current line.
  318.  
  319.  
  320.  
  321.  
  322.  
  323.  
  324. Chapter 5  Expressions
  325.  
  326.      All expressions evaluate to integer values modulo 65536(2^16) and are
  327.      written in infix notation(the way you normally write them).  Operators
  328.      provided are grouped below in order of precedence.
  329.  
  330. 1. (unary)
  331. ~           logical bit wise complement(not) of its operand(one's complement).
  332. -           arithemetic complement, or negation(two's complement).
  333.  
  334. 2. (binary)
  335. *           integer multiply (two's complement).
  336. /           integer divide   (two's complement).
  337. %           modulus          (result is always positive)
  338. >>          logical shift right (left operand shifted right operand times).
  339. <<          logical shift left (left operand shifted right operand times).
  340. ~           equivalent to  A or ( ~B ).
  341.  
  342. 3. (binary)
  343. |           logical bitwise or(inclusive-or) of two operands.
  344. ^           logical bitwise exclusive-or of two operands.
  345. &           logical bitwise and of two operands.
  346.  
  347. 4. (binary)
  348. +           addition (two's complement).
  349. -           subtraction (two's complement).
  350.  
  351.      Since this version does not generate relocatable code there exists only
  352.      one "type" of operand that can be in an expression.  So anything goes
  353.      except divide by 0(1 will be substituted ).
  354.  
  355. examples:
  356.     -1 = h'ffff  (two's complement notation).
  357.     -1 >> 8 = h'00ff
  358.     -1 << 8 = h'ff00
  359.     3 / 2 = 1
  360.     6 / 2 = 3
  361.     5 / 0 = 5
  362.     -2 / 1 = -2
  363.     -3 /-2 = 1
  364.     2 * -3 = -6
  365.     b'00 & b'11 = 0
  366.     b'11 & b'10 = 2
  367.     2 * b'01 & b'10 = 2
  368.     b'01 ^ b'11 = 2
  369.     b'01 | b'11 = 3
  370.  
  371. Notice that spaces are ignored in expressions.
  372.  
  373.  
  374.  
  375.  
  376.  
  377.  
  378.  
  379.  
  380. Chapter 6  Assembler Directives
  381.   (also known as assembler Pseudo-opcodes)
  382.  
  383.      The assembler recognizes the following directives:
  384.  
  385.       directive  section    description
  386.  
  387.       .command    1   ;set assembly options(similar to command line options).
  388.  
  389.       .org        2   ;set program origin.
  390.  
  391.       .equ        3   ;equate an identifier to an expression(permanent
  392.                       ; assignment).
  393.  
  394.       .set        4   ;equate and identifier to an expression(temporary
  395.                       ; assignment).
  396.  
  397.       .rs         5   ;reserve storage(memory) space.
  398.  
  399.       .db         6   ;define byte.
  400.  
  401.       .dw         7   ;define word(16 bit).
  402.  
  403.       .drw        8   ;define reversed word(16 bit).
  404.  
  405.       .eject      9   ;form feed in listing
  406.  
  407.       .page      10   ;align location counter on 256 byte memory
  408.                       ; page boundary.
  409.  
  410.       .end       11   ;end of program
  411.  
  412.       .opdef     12   ;equate an identifier with another identifier.
  413.  
  414.       .segment   13   ;define a memory segment.
  415.  
  416.       <segment name>
  417.                  14   ;select segment <segment name> as current segment.
  418.  
  419.       .null      15   ;this is a comment statement.
  420.  
  421.  
  422.  
  423.  
  424.  
  425. 1. .command    <optionlist>   ;allows the programmer to set option switches
  426.                               ;in the same manner as on the command line.
  427.                               ;(the command line is the line typed to run
  428.                               ; this program).
  429.  
  430. <optionlist> -> <option> ' ' <optionlist>
  431. <optionlist> ->
  432.  
  433. <option> -> '-'<available option>
  434. <option> -> '+'<available option>
  435.  
  436. <available option> -> 'w'<decimal number> ;page width in columns(characters).
  437.                                           ;(-,+ are ignored but one must be
  438.                                           ; there).
  439.  
  440. <available option> -> 'h'<decimal number> ;page height in lines.
  441.                                           ;(-,+ are ignored but one must be
  442.                                           ; there).
  443.  
  444. <available option> -> 'l'                 ;listing on(+) or off(-)
  445.                                           ;if set on command line it overrides
  446.                                           ;all listing controls in program.
  447.  
  448. <available option> -> 's'                 ;symbol listing on(+) or off(-).
  449.  
  450. <available option> -> 'o'                 ;selects single object module
  451.                                           ;file only(+), or multiple object
  452.                                           ;module files(-)(one for each
  453.                                           ;defined segment in the program).
  454.                                           ;ONLY active on command line!
  455.  
  456. <available option> -> 't'<drive>          ;specifies which drive to create
  457.                                           ;all temporary files on(-,+ are
  458.                                           ; ignored but one must be there).
  459.                                           ;ONLY active on command line!
  460.  
  461. <available option> -> 'p'<drive>          ;specifies which drive to create
  462.                                           ;the listing file on(-,+ are
  463.                                           ; ignored but one must be there).
  464.                                           ;ONLY active on command line!
  465.  
  466. <drive> -> <drive name>':'
  467.  
  468.                            ;MS-DOS
  469. <drive name> -> 'a'        ;drive a --usually a floppy disk
  470. <drive name> -> 'b'        ;drive b --usually a second floppy disk
  471. <drive name> -> 'c'        ;drive c --usually a hard disk, but may
  472.                                       be a ram disk.
  473. <drive name> -> 'd'        ;drive d --usually a ram disk, but may
  474.                                       be a hard disk.
  475. ** The default options are:  -w132 -h66 +l +s +o
  476.  
  477.  
  478.  
  479.  
  480.  
  481.  
  482. 2. .org   <integer expression>    ;sets the assembler location counter
  483.                                   ;to the value of expression.
  484.                                   ;The expression MUST be evaluatable
  485.                                   ;on the first pass. NO FORWARD
  486.                                   ;REFERENCES!
  487.  
  488. 3. .equ  <identifier> ',' <integer expression>
  489.                                   ;gives identifier the value of the
  490.                                   ;integer expression.
  491.                                   ;<identifier> canNOT be redefined!
  492.                                   ;also forward references are allowed
  493.                                   ;as long as they are resolved by the
  494.                                   ;second pass.
  495.  
  496. 4. .set  <identifier> ',' <integer expression>
  497.                                   ;gives identifier the value of the
  498.                                   ;integer expression.
  499.                                   ;<identifier> CAN be redefined later
  500.                                   ; in the program!
  501.                                   ;also forward references are allowed
  502.                                   ;as long as they are resolved by the
  503.                                   ;second pass.
  504.  
  505. 5. .rs  <integer expression>      ;increments the location counter
  506.                                   ;by the value of <integer expresson>
  507.                                   ;effectively reserving that many bytes
  508.                                   ;of memory.
  509.  
  510. 6. .db  <expression-string list>
  511.  
  512. <expression-string list> -> <expression>','<expression-string list>
  513. <expression-string list> -> <string>','<expression-string list>
  514. <expression-string list> -> <expression>
  515. <expression-string list> -> <string>
  516.  
  517.                                   ;creates a byte in the machine code
  518.                                   ;for each <expression> in the list
  519.                                   ;and a byte for each ascii character
  520.                                   ;in the a string.
  521. 7. .dw  <expression list>
  522.  
  523. <expression list> -> <expression>','<expression list>
  524. <expression list> -> <expression>
  525.  
  526.                                   ;creates a word(16 bit) in the machine code
  527.                                   ;for each <expression> in the list.
  528.                                   ;MOST significant byte is stored at LOWER
  529.                                   ;address.
  530.  
  531.  
  532.  
  533.  
  534.  
  535.  
  536. 8. .drw  <expression list>
  537.  
  538. <expression list> -> <expression>','<expression list>
  539. <expression list> -> <expression>
  540.  
  541.                                   ;creates a word(16 bit) in the machine code
  542.                                   ;for each <expression> in the list.
  543.                                   ;LEAST significant byte is stored at LOWER
  544.                                   ;address.
  545.  
  546. 9. .eject                         ;causes a form-feed character to be
  547.                                   ;inserted in listing.(new listing page)
  548.  
  549. 10. .page                         ;increments location counter to next
  550.                                   ;256 byte page boundary.
  551.  
  552. 11. .end <integer expression>     ;signals the end of the source program.
  553.                                   ;the optional expression, if supplied,
  554.                                   ;specifies the start address of the
  555.                                   ;program, and is included in the
  556.                                   ;Intel Hex object module output
  557.                                   ;of the active segment when the .end
  558.                                   ;was encountered.
  559.  
  560.  
  561. 12. .opdef  <identifier>,<identifier>
  562.                                   ;assigns the current definition of
  563.                                   ;the second <identifier> to the
  564.                                   ;first <identifier>.
  565.                                   ;useful for renaming opcodes and
  566.                                   ;pseudo-ops.
  567.  
  568. 13. .segment <identifier> ',' <integer expression>
  569.                                   ;defines a memory segment name.
  570.                                   ;used to separate memory allocation
  571.                                   ;and optionally generate seperate
  572.                                   ;object files.(see 'o' assembly
  573.                                   ;directive to activate).
  574.                                   ;(used to seperate RAM, ROM, or
  575.                                   ; ROMS)
  576.                                   ;the optional <integer expression> is
  577.                                   ;added to the location counter to
  578.                                   ;offset the load address supplied
  579.                                   ;in the object module. (does not
  580.                                   ;affect listings addresses!)
  581.                                   ;
  582.                                   ;note: .code is the predefined default
  583.                                   ;segment and cannot be redefined.
  584.  
  585. 14. <segment name>                ;selects the segment <segment name>
  586.                                   ;as the current memory segment.
  587.  
  588. 15.  .null                        ;directs the assembler to treat this
  589.                                   ; statement as a comment.  Useful to
  590.                                   ; nullify opcodes when used in conjunction
  591.                                   ; with the .opdef pseudo-op.
  592.  
  593.  
  594.  
  595.  
  596.  
  597.  
  598.  
  599. Appendix   A      ASCII character set
  600.  
  601.  
  602.  
  603. dec oct hex char     dec oct hex char  dec oct hex char  dec oct hex char
  604.  
  605.   0 000  00 ^@ null   32 040  20 sp     64 100  40 @      96 140  60 `
  606.   1 001  01 ^A soh    33 041  21 !      65 101  41 A      97 141  61 a
  607.   2 002  02 ^B stx    34 042  22 "      66 102  42 B      98 142  62 b
  608.   3 003  03 ^C etx    35 043  23 #      67 103  43 C      99 143  63 c
  609.   4 004  04 ^D eot    36 044  24 $      68 104  44 D     100 144  64 d
  610.   5 005  05 ^E enq    37 045  25 %      69 105  45 E     101 145  65 e
  611.   6 006  06 ^F ack    38 046  26 &      70 106  46 F     102 146  66 f
  612.   7 007  07 ^G bel    39 047  27 '      71 107  47 G     103 147  67 g
  613.   8 010  08 ^H bs     40 050  28 (      72 110  48 H     104 150  68 h
  614.   9 011  09 ^I ht     41 051  29 )      73 111  49 I     105 151  69 i
  615.  10 012  0A ^J lf     42 052  2A *      74 112  4A J     106 152  6A j
  616.  11 013  0B ^K vt     43 053  2B +      75 113  4B K     107 153  6B k
  617.  12 014  0C ^L ff     44 054  2C ,      76 114  4C L     108 154  6C l
  618.  13 015  0D ^M cr     45 055  2D -      77 115  4D M     109 155  6D m
  619.  14 016  0E ^N so     46 056  2E .      78 116  4E N     110 156  6E n
  620.  15 017  0F ^O si     47 057  2F /      79 117  4F O     111 157  6F o
  621.  16 020  10 ^P dle    48 060  30 0      80 120  50 P     112 160  70 p
  622.  17 021  11 ^Q dc1    49 061  31 1      81 121  51 Q     113 161  71 q
  623.  18 022  12 ^R dc2    50 062  32 2      82 122  52 R     114 162  72 r
  624.  19 023  13 ^S dc3    51 063  33 3      83 123  53 S     115 163  73 s
  625.  20 024  14 ^T dc4    52 064  34 4      84 124  54 T     116 164  74 t
  626.  21 025  15 ^U nak    53 065  35 5      85 125  55 U     117 165  75 u
  627.  22 026  16 ^V syn    54 066  36 6      86 126  56 V     118 166  76 v
  628.  23 027  17 ^W etb    55 067  37 7      87 127  57 W     119 167  77 w
  629.  24 030  18 ^X can    56 070  38 8      88 130  58 X     120 170  78 x
  630.  25 031  19 ^Y em     57 071  39 9      89 131  59 Y     121 171  79 y
  631.  26 032  1A ^Z sub    58 072  3A :      90 132  5A Z     122 172  7A z
  632.  27 033  1B ^[ esc    59 073  3B ;      91 133  5B [     123 173  7B {
  633.  28 034  1C ^\ fs     60 074  3C <      92 134  5C \     124 174  7C |
  634.  29 035  1D ^] gs     61 075  3D =      93 135  5D ]     125 175  7D }
  635.  30 036  1E ^^ rs     62 076  3E >      94 136  5E ^     126 176  7E ~
  636.  31 037  1F ^_ us     63 077  3F ?      95 137  5F _     127 176  7F del
  637.  
  638.  ^ denotes control key simultaneous with character key.
  639.  
  640.  
  641.  
  642.  
  643.  
  644.  
  645.  
  646.  
  647.  
  648. Appendix B       Copyright Information:
  649.  
  650.  
  651. Disclaimer:
  652.  
  653.             PseudoSam 48 is distributed as is, with no guarantee that it
  654.             will work correctly in all situations.  In no event will the
  655.             Author be liable for any damages, including lost profits,
  656.             lost savings or other incidental or consequential damages
  657.             arising out of the use of or inability to use these
  658.             programs, even if the Author has been advised of the
  659.             possibility of such damages, or for any claim by any other
  660.             party.
  661.  
  662. Copyright Information:
  663.  
  664.             The entire PseudoSam 48 distribution package, consisting of
  665.             the main program, documentation files, and various data and
  666.             utility files, is copyright (c) 1986, by PseudoCode.
  667.  
  668.             The author reserves the exclusive right to distribute this
  669.             package, or any part thereof, for profit.
  670.  
  671.             The name "PseudoSam (tm)", applied to an assembler
  672.             program, is a trade mark of the PseudoCode company.
  673.  
  674.             PseudoSam version 1.x.xx and various subsidiary files may be
  675.             copied freely by individuals for non-commercial purposes. It
  676.             is expected that those who find the package useful will
  677.             purchase the update service.
  678.             ONLY UNMODIFIED VERSIONS DISPLAYING THE AUTHORS COPYRIGHT
  679.             MAY BE COPIED.
  680.  
  681.             User groups and clubs are authorized to distribute PseudoSam
  682.             software under the following conditions:
  683.  
  684.             1.  No charge is made for the software or documentation.  A
  685.                 nominal distribution fee may be charged, provided that
  686.                 it is no more than $5 total.
  687.  
  688.             2.  Recipients are to be informed of the user-supported
  689.                 software concept, and encouraged to support it with
  690.                 their donations.
  691.  
  692.             3.  The program and documentation are not modified in ANY
  693.                 way, and are distributed together.
  694.  
  695.  
  696.  
  697.  
  698.  
  699.  
  700.             Interested manufacturers are invited to contact PseudoCode
  701.             to discuss licensing PseudoSam 48 for bundling with MS-DOS
  702.             based development systems.
  703.  
  704.             Distribution of PseudoSam 48 outside the United States is through
  705.             licensed distributors, on a royalty basis.  Interested
  706.             distributors are invited to contact PseudoCode.
  707.  
  708.  
  709.  
  710. Educational Use:
  711.  
  712.             Educational institutions are free to use this software
  713.             in their classes and are encouraged to distribute this
  714.             package to their students, however inorder to receive
  715.             periodic updates and technical assistance the appropriate
  716.             department must remit the license fee.  Also a staff
  717.             member must be assigned to clear all trouble reports before
  718.             forwarding them to PseudoCode.
  719.  
  720.  
  721.  
  722.  
  723.  
  724.  
  725.  
  726.  
  727.         If you use this software, please help support it.  Your
  728.         support can take three forms:
  729.  
  730.         1. Become a registered user.  The suggested payment for
  731.            registration is $30($100 for complete family).
  732.  
  733.         2. Suggestions, comments, and bug reports.
  734.  
  735.         3. Spread the word.  Make copies for friends.  Write the editor
  736.            of your favorite computer magazine.  Astronomical advertising
  737.            costs are one big reason that commercial software is so over-
  738.            priced.  To continue offering PseudoSam 48 this way, we need
  739.            your help in letting other people know about PseudoSam 48.
  740.  
  741.         Those who make the $30 payment to become registered users
  742.         receive the following benefits:(order form on next page)
  743.  
  744.         1. One year of updates including any upgrades. This includes
  745.            at least one new version release even if it takes more than
  746.            one year.
  747.  
  748.         2. User support by mail.  Support is only available to registered
  749.            users.  The address for help is given below.
  750.  
  751.         3. Notices announcing the release of new products.
  752.  
  753.  
  754.  
  755.  
  756.  
  757.  
  758.  
  759.  
  760.  
  761.              Attention:BUGS             PseudoCode
  762.                                         P.O. Box 1423
  763.                                         Newport News, VA     23601
  764.  
  765.  
  766.  
  767.  
  768.  
  769.       ********ORDER FORM********
  770.  
  771.       Please add me to the list of registered PseudoSam 48 users, and send me
  772.       the most recent version. I understand that registration entitles me to
  773.       one year of free updates and new releases, or one free new version
  774.       release, whichever occurs last.
  775.  
  776.       Note that version 1.2.02 requires DOS 2 (or later) and 256K.
  777.  
  778.       Computer Model: ____________________________________
  779.  
  780.       Diskette format:            Total Memory: _______K
  781.                                      (256K required)
  782.          __ doubled sided/DOS 2
  783.  
  784.       Check one:
  785.              ___ I enclose a check for $30
  786.              (PseudoCode pays sales tax for VA orders)
  787.  
  788.       Where did you hear about PseudoSam 48? ________________________________
  789.  
  790.       Name:    _______________________________________________________
  791.  
  792.       Address: _______________________________________________________
  793.  
  794.       City, State, Zip: ______________________________________________
  795.  
  796.       ================================================================
  797.  
  798.            Send order form with check or money order payable to PseudoCode to:
  799.            (Qualified PO's will be billed.)
  800.  
  801.            Attention: Registration         PseudoCode
  802.                                            P.O. Box 1423
  803.                                            Newport News, VA     23601
  804.  
  805.  
  806.  
  807.  
  808.  
  809.  
  810.       ********ORDER FORM********
  811.  
  812.       Please add me to the list of registered users of the complete
  813.       PseudoSam family of cross-assemblers. Send me the most recent
  814.       versions.  I understand that registration entitles me to
  815.       one year of free updates and new releases, or one free new
  816.       version release, whichever occurs last.
  817.  
  818.  
  819.       I note that version 1.2.02 requires DOS 2 (or later) and 256K.
  820.  
  821.       Computer Model: ____________________________________
  822.  
  823.       Diskette format:            Total Memory: _______K
  824.                                      (256K required)
  825.          __ single sided/DOS 2(360k)
  826.  
  827.       Check one:
  828.              ___ I enclose a check or money order for $100
  829.                  (shipping, handling, and Virginia sales tax for VA orders
  830.                   is paid by PseudoCode).
  831.  
  832.       Where did you hear about the PseudoSam family? ________________________
  833.  
  834.       Name:    _______________________________________________________
  835.  
  836.       Address: _______________________________________________________
  837.  
  838.       City, State, Zip: ______________________________________________
  839.  
  840.       ================================================================
  841.  
  842.            Send order form with check or money order payable to PseudoCode to:
  843.            (Qualified PO's will be billed.)
  844.  
  845.            Attention: Registration         PseudoCode
  846.                                            P.O. Box 1423
  847.                                            Newport News, VA     23601
  848.  
  849.  
  850.  
  851.  
  852.       ********Commercial Distribution Agreement********
  853.  
  854.       Please add me to the list of registered PseudoSam 48 distributors, and
  855.       send me the most recent version. I understand that registration entitles
  856.       me to distribute this package freely on an "as is" basis to purchasers
  857.       of my products. I further understand that I may not make a specific or
  858.       additional charge for this package. I may however advertise the package
  859.       as free software. I fully understand that the distributed software
  860.       must be clearly labeled as follows:
  861.  
  862.       Complementary Software
  863.       Distributed "AS IS"
  864.       PseudoCode
  865.       P.O. Box 1423
  866.       Newport News, VA 23601
  867.  
  868.  
  869.  
  870.       I understand that this agreement entitles me to one year of distribution
  871.       rights and free updates.
  872.  
  873.       Note that version 1.2.02 requires DOS 2 (or later) and 256K.
  874.  
  875.       Computer Model: ____________________________________
  876.  
  877.       Diskette format:            Total Memory: _______K
  878.                                      (256K required)
  879.          __ doubled sided/DOS 2
  880.  
  881.       Check one:
  882.              ___ I enclose a check for $30
  883.              (PseudoCode pays sales tax for VA orders)
  884.  
  885.       Where did you hear about PseudoSam 48? ________________________________
  886.  
  887.       Name:    _______________________________________________________
  888.  
  889.       Address: _______________________________________________________
  890.  
  891.       City, State, Zip: ______________________________________________
  892.  
  893.       Signature_______________________   Date_________________
  894.  
  895.       ================================================================
  896.  
  897.            Send order form with check or money order payable to PseudoCode to:
  898.            (Qualified PO's will be billed.)
  899.  
  900.            Attention: Registration         PseudoCode
  901.                                            P.O. Box 1423
  902.                                            Newport News, VA     23601
  903.  
  904.  
  905.  
  906.  
  907.  
  908.  
  909.       ********Commercial Distribution Agreement********
  910.  
  911.  
  912.       Please add me to the list of registered PseudoSam distributors, and
  913.       send me the most recent version. I understand that registration entitles
  914.       me to distribute this package freely on an "as is" basis to purchasers
  915.       of my products. I further understand that I may not make a specific or
  916.       additional charge for this package. I may however advertise the package
  917.       as free software. I fully understand that the distributed software
  918.       must be clearly labeled as follows:
  919.  
  920.       Complementary Software
  921.       Distributed "AS IS"
  922.       PseudoCode
  923.       P.O. Box 1423
  924.       Newport News, VA 23601
  925.  
  926.  
  927.  
  928.       I understand that this agreement entitles me to one year of distribution
  929.       rights and free updates for the entire PseudoSam family of products.
  930.  
  931.  
  932.       I note that version 1.2.02 requires DOS 2 (or later) and 256K.
  933.  
  934.       Computer Model: ____________________________________
  935.  
  936.       Diskette format:            Total Memory: _______K
  937.                                      (256K required)
  938.          __ single sided/DOS 2(360k)
  939.  
  940.       Check one:
  941.              ___ I enclose a check or money order for $100
  942.                  (shipping, handling, and Virginia sales tax for VA orders
  943.                   is paid by PseudoCode).
  944.  
  945.       Where did you hear about the PseudoSam family? ________________________
  946.  
  947.       Name:    _______________________________________________________
  948.  
  949.       Address: _______________________________________________________
  950.  
  951.       City, State, Zip: ______________________________________________
  952.  
  953.       Signature_______________________   Date_________________
  954.  
  955.       ================================================================
  956.  
  957.            Send order form with check or money order payable to PseudoCode to:
  958.            (Qualified PO's will be billed.)
  959.  
  960.            Attention: Registration         PseudoCode
  961.                                            P.O. Box 1423
  962.                                            Newport News, VA     23601
  963.  
  964.  
  965.  
  966.  
  967.  
  968.  
  969.  
  970.       The PsuedoSam Family consists of the following cross-assemblers
  971.  
  972.        Name            Designed for         Available*   V1.1.00
  973.  
  974.        PseudoSam 48   ;Intel 8048 family.     Now
  975.        PseudoSam 51   ;Intel 8051 family.     Now
  976.        PsuedoSam 96   ;Intel 8096 family.     Now
  977.        PseudoSam 68   ;Motorola
  978.                       ;6800,01,02,03,08.      Now
  979.        PseudoSam 685  ;Motorola 6805.         Now
  980.        PsuedoSam 689  ;Motorola 6809.         Now
  981.        PseudoSam 65   ;6502.                  Now
  982.        PseudoSam 85   ;Intel 8080,8085.       Now
  983.        PseudoSam 80z  ;Zilog Z80, NSC800.     Now
  984.        PseudoSam 18   ;RCA 1802.              Now
  985.        PseudoSam 32   ;NSC 32000 Family.      Apr 87
  986.        PseudoSam 68k  ;Motorola 68000 family. May 87
  987.  
  988.    * PseudoCode reserves the right to change price and availability
  989.      of any product without notice.
  990.  
  991.  
  992.  
  993.  
  994.  
  995.  
  996.  
  997.  
  998.  
  999. Appendix C: Description of Files
  1000.  
  1001.       Your PseudoSam 48 distribution disk contains a number of files.  This
  1002.       appendix will give a brief statement of the purpose of each of the
  1003.       files.
  1004.  
  1005.       FILE           DESCRIPTION
  1006.       ----------------------------------------------------------------
  1007.       A48.COM         The PseudoSam 48 program.
  1008.       A48.DOC         This document.
  1009.       EXAMPLE.ASM     Sample source file.
  1010.       MNEMTEST.ASM    Mnemnonics test file.
  1011.       SYN.ASM         Useful mnemnonics redefinitions
  1012.       COMRCIAL.USE    Commercial distribution agreement.
  1013.  
  1014.       Occasionally, various other sample source files for PseudoSam 48 will be
  1015.       distributed.  These files will have extension ASM, and will be
  1016.       accompanied by a corresponding DOC file.
  1017.  
  1018.  
  1019.  
  1020.  
  1021.  
  1022.  
  1023.  
  1024.  
  1025.  
  1026. Appendix D: Bug Reporting Procedure.
  1027.  
  1028.  
  1029.       Although each version of PseudoSam 48 is tested extensively prior
  1030.       to release, any program is bound to contain a few bugs.  It is
  1031.       the intention of PseudoCode to correct any genuine problem that
  1032.       is reported.
  1033.  
  1034.       If you think you have found a bug in PseudoSam 48, please take the time
  1035.       to report it for correction.  Although any report is helpful,
  1036.       correction of the problem will be easiest if you provide the
  1037.       following:
  1038.  
  1039.          1. The version of PseudoSam 48 you are using.  Your problem may have
  1040.             been fixed already.
  1041.  
  1042.          2. A brief description of the problem.
  1043.  
  1044.          3. A copy of the problem source file, preferably on a floppy disk.
  1045.             (The cost of floppies is so small($.29), they will not be
  1046.              returned and become the property of PseudoCode.)
  1047.  
  1048.             * It is NOT necessary to send a large program to demonstrate
  1049.               problem.  Please try to isolate the problem area, by
  1050.               writing a short sample program that demonstrates the bug.
  1051.  
  1052.  
  1053.  
  1054.  
  1055.  
  1056.  
  1057.              Attention:BUGS             PseudoCode
  1058.                                         P.O. Box 1423
  1059.                                         Newport News, VA     23601
  1060.  
  1061.  
  1062.  
  1063.  
  1064.  
  1065.  
  1066.  
  1067.       Appendix E   Using PseudoSam 48 on "Compatible" Systems.
  1068.  
  1069.       PseudoSam 48 was written specifically for the IBM PC, but should
  1070.       function normally on true "compatibles".
  1071.  
  1072.       Since PseudoSam 48 version 1.2.00 is a totally new program, little
  1073.       compatibility data is currently available.  If you are using (or
  1074.       are unable to use...) PseudoSam 48 on a non-IBM computer, please
  1075.       write with your experiences.  Does PseudoSam 48 work correctly on
  1076.       your system?  Are there specific problem areas?  Can they be worked
  1077.       around?
  1078.  
  1079.       The following systems are known to run PseudoSam 48 version 1.2.00
  1080.       successfully:
  1081.              IBM PC
  1082.              IBM XT
  1083.              IBM AT
  1084.              Sperry PC (all models).
  1085.              JDR Microdevices PC Clones.
  1086.  
  1087.  
  1088.  
  1089.  
  1090.  
  1091.  
  1092. Appendix F:  Revisions
  1093.  
  1094. V1.1.00  Corrected
  1095. 1.  Loss of sync problem between first and second pass.
  1096. 2.  Symbol table not printing correctly if more than one column of
  1097.     symbols.
  1098. 3.  Program hang on command line errors.
  1099. 4.  Forward references for immediate data would give erroneous error
  1100.     messages if assembled on other than memory page 0.
  1101.